home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / wsanet8a / wsanet / vbsmtpd.ini < prev    next >
INI File  |  1996-04-08  |  5KB  |  237 lines

  1. ; This is VB-SMTP's INI file
  2.  
  3. ;
  4. ; **************** [Configuration] ****************
  5. ;
  6. [Configuration]
  7. ;
  8. ; This section holds essential configuration information.
  9. ;
  10. Mailbox=C:\VB\IANS.MBX
  11.  
  12. ; The application used to read mail is stored here.
  13. ;
  14. Reader=C:\WINDOWS\NOTEPAD.EXE
  15.  
  16. ; Should each incoming message get it's own reader?
  17. ;
  18. UniqueReader=False
  19.  
  20. ;
  21. ; These are the logging options for the main "log" listbox
  22. ;
  23. LogSize=100
  24. ;
  25. LogError=True
  26. LogWarning=True
  27. LogSend=False
  28. LogRecv=False
  29. LogSummary=True
  30. LogNormal=False
  31. LogDebug=False
  32.  
  33. ;
  34. ; **************** [Windows] ****************
  35. ;
  36. [Windows]
  37. ;
  38. ; The Windows section holds all window placement information
  39. ;
  40. Main.Top=135
  41. Main.Left=180
  42. Main.Width=5490
  43. Main.Height=4740
  44.  
  45. About.Top=765
  46. About.Left=540
  47.  
  48. Setup.Top=765
  49. Setup.Left=765
  50.  
  51. ;
  52. ; **************** [Local] ****************
  53. ;
  54. [Local]
  55. ;
  56. ; Set this flag to True to accept messages as ANY MACHINE
  57. ;
  58. NoHosts=False
  59.  
  60. ; List any domains/machines that you will accept mail for.
  61. ;
  62. Local1=HARRIS.COM
  63.  
  64.  
  65. ; **************** [Users] ****************
  66. [Users]
  67. ;
  68. ; Set this flag to True to allow messages to ANYONE
  69. ;
  70. NoUsers=False
  71.  
  72. ; If NoUsers=True, this points to the mailbox for ALL incoming mail
  73. ;
  74. MailBox=c:\mailbox.mbx
  75.  
  76. ; UserX hold each user by id
  77. ;
  78. User1=iblenke
  79. User2=postmaster
  80.  
  81. ; Each user then is given a section for their information
  82. ;
  83. iblenke=User IBlenke
  84. postmaster=User PostMaster
  85.  
  86. [User IBlenke]
  87. ; This is not neccisary, but is returned during a EXPN
  88. ;
  89. First=Ian
  90. Last=Blenke
  91. Middle=C
  92. Desc1=Ian Blenke can receive his mail here.
  93.  
  94. ; This is neccisary
  95. ;
  96. MailBox=c:\iblenke.mbx
  97.  
  98. [User PostMaster]
  99. First=PostMaster
  100. Desc1=The person who runs this machine.
  101. MailBox=c:\postmstr.mbx
  102.  
  103. ; **************** [Help] ****************
  104. [Help]
  105. ;
  106. ; This is a direct mapping of each E/SMTP command to the
  107. ;associated "Help" section. If you do not enter a mapping,
  108. ;the command is looked up as it's own section (i.e. [HELO])
  109. ;
  110. HELP=Help HELP
  111. MAIL=Help MAIL
  112. SEND=Help SEND
  113. SAML=Help SAML
  114. SOML=Help SOML
  115. EXPN=Help EXPN
  116. RCPT=Help RCPT
  117. DATA=Help DATA
  118. RSET=Help RSET
  119. VRFY=Help VRFY
  120. VERB=Help VERB
  121. NOOP=Help NOOP
  122. QUIT=Help QUIT
  123. HELO=Help HELO
  124. EHLO=Help EHLO
  125. ONEX=Help ONEX
  126. MULT=Help MULT
  127. TICK=Help TICK
  128. TURN=Help TURN
  129. XWIN3=Help XWIN3
  130. SHOWQ=Help SHOWQ
  131. DEBUG=Help DEBUG
  132.  
  133. [Help HELP]
  134. Line1=Commands:
  135. Line2=____HELO  EHLO  VERB  ONEX  MULT  MAIL
  136. Line3=____RCPT  DATA  RSET  VRFY  EXPN  XWIN3
  137. Line4=____SEND  SAML  SOML  TURN  NOOP  QUIT
  138. Line5=____TICK  SHOWQ DEBUG
  139. Line6=For more info use 'HELP <topic>'
  140.  
  141. [Help MAIL]
  142. Line1=MAIL FROM:<sender@host>
  143. Line2=____Specify sender. Only used once.
  144. Line3=____If you used EHLO, you can add a 'BODY=8BITMIME' to the end.
  145. Line4=____Example:
  146. Line5=________MAIL FROM: <iblenke@ic1d.harris.com> BODY=8BITMIME
  147.  
  148. [Help SEND]
  149. Line1=SEND FROM:<sender@host>
  150. Line2=____SEND a message to the recipient's screen.
  151.  
  152. [Help SAML]
  153. Line1=SAML FROM:<sender@host>
  154. Line2=____Send a message to the recipient's screen AND Mailbox.
  155.  
  156. [Help SOML]
  157. Line1=SOML FROM:<sender@host>
  158. Line2=____Send a message to the recipient's screen OR Mailbox.
  159.  
  160. [Help EXPN]
  161. Line1=EXPN <recipient@host>
  162. Line2=____This command expands a user id.
  163.  
  164. [Help RCPT]
  165. Line1=RCPT TO:<recipient@host>
  166. Line2=____Specify receiver. Can be used a number of times. Exxample:
  167. Line3=________RCPT TO:<iblenke@ic1d.harris.com>
  168.  
  169. [Help DATA]
  170. Line1=DATA
  171. Line2=____Tells me that a mail message follows, terminated by a .{CR/LF}
  172. Line3=________DATA{CR/LF}
  173. Line4=________Message{CR/LF}
  174. Line5=________.{CR/LF}
  175.  
  176. [Help RSET]
  177. Line1=RSET
  178. Line2=____Makes me forget what you've told me so far.
  179.  
  180. [Help VRFY]
  181. Line1=VRFY
  182. Line2=____I tell you wether I can accept an address.
  183. Line3=____Depending on my configuration, I can lie.
  184.  
  185. [Help VERB]
  186. Line1=VERB
  187. Line2=____I've heard about this command, but I don't handle it yet.
  188.  
  189. [Help NOOP]
  190. Line1=NOOP
  191. Line2=____I twiddle my thumbs!
  192.  
  193. [Help QUIT]
  194. Line1=QUIT
  195. Line2=____I say goodbye, then I crudely hang up.
  196.  
  197. [Help HELO]
  198. Line1=HELO <hostname>
  199. Line2=____Lets you identify yourself to me. No, I don't listen to liars.
  200.  
  201. [Help EHLO]
  202. Line1=EHLO
  203. Line2=____Lets you identify yourself to me as a E/SMTP host.
  204.  
  205. [Help ONEX]
  206. Line1=ONEX
  207. Line2=____One transaction. I could care less, really.
  208.  
  209. [Help MULT]
  210. Line1=MULT
  211. Line2=____Multiple transactions. Why do you think I care?
  212.  
  213. [Help TICK]
  214. Line1=TICK
  215. Line2=____A nasty little blood sucking parasite!
  216. Line3=____Er... I mean, kinda like a NOOP
  217.  
  218. [Help TURN]
  219. Line1=TURN
  220. Line2=____I am supposed to switch to SMTP client mode.
  221. Line3=____But I don't do that yet.
  222.  
  223. [Help XWIN3]
  224. Line1=XWIN3
  225. Line2=____I notice that you are another MSWindows SMTP client!
  226.  
  227. [Help SHOWQ]
  228. Line1=SHOWQ
  229. Line2=____My IQ is higher than your IQ, obviously!
  230.  
  231. [Help DEBUG]
  232. Line1=DEBUG
  233. Line2=____I don't have any bugs. So there! ;P
  234. Line3=____If I did, you would have to contact the author:
  235. Line4=________<iblenke@ic1d.harris.com>
  236.  
  237.